@charset "UTF-8";
/* =============================== 2022/12 ============================== */
/* FAQ
---------------------------------------------- */
.page-faq .accordion a {
	text-decoration: underline;
}
.page-faq .faq-list-box {
	padding: 0 8px 60px;
}
.page-faq .faq-list-box dt {
	padding: 20px 10px 20px 0;
	border-bottom: 1px solid #ece9de;
	color: #818181;
	position: relative;
	-webkit-transition: 200ms all ease;
	transition: 200ms all ease;
}
.page-faq .faq-list-box dt:hover {
	cursor: pointer;
	color: #891f24;
}
.page-faq .faq-list-box dt.show {
	color: #891f24;
}
.page-faq .faq-list-box dd {
	display: none;
	background: #efefef;
	padding: 20px;
	margin-bottom: 20px;
}
.page-faq .faq-list-box p + p {
	margin-top: 1em
}
.page-faq .faq-list-box dt .plus-icon {
	position: absolute; 
	right: 0; 
	z-index: 1; 
	height: 20px; 
	width: 20px;  
} 
.page-faq .faq-list-box dt .plus-icon:before,  
.page-faq .faq-list-box dt .plus-icon:after {  
	content: "";  
	width: 20px;  
	height: 2px;  
	background: #000; 
	position: absolute; 
	right: 0; 
	top: 50%; 
	transition: 200ms ease all; 
} 
.page-faq .faq-list-box dt .plus-icon:before { 
	-webkit-transform: rotate(0deg);  
	-ms-transform: rotate(0deg);  
	transform: rotate(0deg);  
} 
.page-faq .faq-list-box dt .plus-icon:after {  
	-webkit-transform: rotate(90deg); 
	-ms-transform: rotate(90deg); 
	transform: rotate(90deg); 
}
.page-faq .faq-list-box dt.show .plus-icon:after {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
  }
@media only screen and (max-width: 787px) {	
	.page-faq .faq-list-box {
	  padding: 0 20px 30px;
	}
	.page-faq .faq-list-box dt {
	  padding: 20px 30px 20px 0;
	}
	.page-faq .faq-list-box dd {
		padding: 10px;
		font-size: 1.4rem;
	}
	.page-faq .faq-list-box dt .plus-icon {
		height: 15px;
		width: 15px;
    }
    .plus-icon:before,
    .plus-icon:after {
		width: 15px;
    }
}